home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / pc / files / ant_nec / nec_in_c.tz / nec_in_c / NEC2 / at.c next >
C/C++ Source or Header  |  1992-02-29  |  162b  |  18 lines

  1. int atoi();
  2. double atof();
  3. int atoi_(x,j,n)
  4. char *x;
  5. int n,*j;
  6. {
  7. int i;
  8. i = atoi(x);
  9. *j = i;
  10. }
  11. double atof_(x,j,n)
  12. char *x;
  13. int n;
  14. double *j;
  15. {
  16. *j = (atof(x));
  17. }
  18.